home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Speccy ClassiX 1998
/
Speccy ClassiX 98.iso
/
amiga_system
/
the_aminet
/
dev
/
src
/
systemidle10.lha
/
SystemIdle
/
makefile
< prev
next >
Wrap
Makefile
|
1995-10-08
|
256b
|
15 lines
compileargs = -fbaserel -noixemul -x none -s -m68000
objects = test.o idle.o
test : test.o idle.o
gcc -o test $(compileargs) $(objects)
test.o : test.c
gcc -c $(compileargs) test.c
idle.o : idle.c
gcc -c $(compileargs) idle.c
clean :
rm $(objects)